home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 3 / Cream of the Crop 3.iso / windows / route141.zip / ALTSETUP.BAT < prev    next >
DOS Batch File  |  1993-11-09  |  3KB  |  82 lines

  1. @echo off
  2. cls
  3. echo Alternate Installation for Route 1 v4.1.
  4. echo                           (use only if INSTALL.EXE fails)
  5. echo                                                                               .
  6. echo Syntax:
  7. echo     ALTSETUP [destdir]
  8. echo where:
  9. echo     destdir is the full pathname of the destination directory.
  10. echo             (if it is left out, ALSETUP will fail)
  11. echo example:
  12. echo     altsetup c:\windows\route1
  13. echo                                                                               .
  14. echo ALTSETUP will create destdir, if it can, and copy the files to it.
  15. echo Make sure that EXPAND.EXE (comes with Windows & DOS) is in the path.
  16. echo                                                                               .
  17. echo press Ctrl-C to cancel, or
  18. if "%1" == "" goto quit
  19. pause
  20.  
  21. md %1
  22. copy VBRUN200.DLL %1
  23. copy README1.TXT %1
  24. expand r1icons.dl_ %1\r1icons.dll
  25. expand 1trash.ex_ %1\1trash.exe
  26. expand putfocus.ex_ %1\putfocus.exe
  27. expand taskmenu.ex_ %1\taskmenu.exe
  28. expand route1.ex_ %1\route1.exe
  29. expand rs1ed.ex_ %1\rs1ed.exe
  30. expand rs1run.ex_ %1\rs1run.exe
  31. expand route1.hl_ %1\route1.hlp
  32. expand rs1ed.hl_ %1\rs1ed.hlp
  33. expand blank.ic_ %1\blank.ico
  34. expand route1.in_ %1\route1.ini
  35. expand route1.ov_ %1\route1.ovl
  36. expand startup.rs_ %1\startup.rs1
  37. expand timer.rs_ %1\timer.rs1
  38. expand route1.rs_ %1\route1.rs1
  39. expand orderfrm.wr_ %1\orderfrm.wri
  40. if exist r1reg.ex_ expand r1reg.ex_ %1\r1reg.exe
  41. expand folder.ex_ %1\folder.exe
  42. expand folder.hl_ %1\folder.hlp
  43. expand taskmenu.in_ %1\taskmenu.ini
  44. expand vbzutil.dl_ %1\vbzutil.dll
  45. copy msdos.dll %1
  46. expand d&dserve.dl_ %1\d&dserve.dll
  47. expand icon2btn.ex_ %1\icon2btn.exe
  48. expand AD.AI_ %1\ad.ai1
  49. expand AD2.AI_ %1\ad2.ai1
  50. expand AMIPRO.AI_ %1\amipro.ai1
  51. expand BOXMAN.AI_ %1\boxman.ai1
  52. expand BUTERFLY.AI_ %1\buterfly.ai1
  53. expand CALC.AI_ %1\calc.ai1
  54. expand CAT.AI_ %1\cat.ai1
  55. expand COREL.AI_ %1\corel.ai1
  56. expand DRIVE.AI_ %1\drive.ai1
  57. expand EYEBALL.AI_ %1\eyeball.ai1
  58. expand EYES.AI_ %1\eyes.ai1
  59. expand FIRE.AI_ %1\fire.ai1
  60. expand HORSE.AI_ %1\horse.ai1
  61. expand HOURGLAS.AI_ %1\hourglas.ai1
  62. expand JETFIGHT.AI_ %1\jetfight.ai1
  63. expand LOTUS123.AI_ %1\lotus123.ai1
  64. expand METER.AI_ %1\meter.ai1
  65. expand MOON.AI_ %1\moon.ai1
  66. expand PAINTER.AI_ %1\painter.ai1
  67. expand RABBIT.AI_ %1\rabbit.ai1
  68. expand RAISIN.AI_ %1\raisin.ai1
  69. expand ROSE.AI_ %1\rose.ai1
  70. expand SHUTTLE.AI_ %1\shuttle.ai1
  71. expand SLOT.AI_ %1\slot.ai1
  72. expand WINE.AI_ %1\wine.ai1
  73. expand WINFLAG.AI_ %1\winflag.ai1
  74. expand WORLD.AI_ %1\world.ai1
  75. expand TUTORIAL.RS_ %1\tutorial.rs1
  76. goto last
  77.  
  78. :quit
  79. echo                                                                               .
  80. echo You must specify a target directory!
  81. :last
  82.